.transfer-content{
  padding: 1rem;
  width: 35%;
  background-color: #313131;
  border-radius: 8px;
  text-align: center;

}

#transfer-title{
  font-size: 24px;
}

#transfer-title img{
  width: 25px;
}

.transfer-input{
  margin: 8px auto;
  padding: 12px 6px;
  border-radius: 4px;
  width: 80%;
  border: none;
  display: block;
  background-color: #222222;
  transition: 1s;
  outline: 0px solid #222222;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  display: none;
}

*:focus{
  outline: none;
}



.transfer-input:focus{
  outline: none;
  outline: 1px solid #555555;
}

.form-button-holder{
  margin: 0 auto;
  width: 100%;

}

.form-btn{
  width: 80px;
  padding: 6px 0;
  border-radius: 4px;
  border: none;
  transition: transform 0.3s ease-in, box-shadow 0.3s ease-in;

}

.form-btn:hover{
  cursor: pointer;
  transform: scale(1.03) translateY(1px);
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

#reset{
  background-color: #222222;
}

#confirm{
  background-color: #449e3b;
}

.bg{
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  justify-content: center;
  align-items: center;

}

@keyframes animationIn{
  0% {
    transform: translateX(-5%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.bg > *{

  animation: 1s ease-out animationIn;
}


@media only screen and (max-width: 480px) {
  .transfer-content{
    width: 70%;
  }
}